709. 转换成小写字母
为保证权益,题目请参考 709. 转换成小写字母(From LeetCode).
解决方案1
Python
python
# 709. 转换成小写字母
# https://leetcode-cn.com/problems/to-lower-case/
################################################################################
class Solution:
def toLowerCase(self, s: str) -> str:
return s.lower()
################################################################################
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13